home *** CD-ROM | disk | FTP | other *** search
/ ADA Programming Guide / ADA Programming Guide.iso / ada_gnu / adainc / a-direio.ads < prev    next >
Text File  |  1996-01-30  |  4KB  |  106 lines

  1. ------------------------------------------------------------------------------
  2. --                                                                          --
  3. --                         GNAT RUNTIME COMPONENTS                          --
  4. --                                                                          --
  5. --                        A D A . D I R E C T _ I O                         --
  6. --                                                                          --
  7. --                                 S p e c                                  --
  8. --                                                                          --
  9. --                            $Revision: 1.6 $                              --
  10. --                                                                          --
  11. -- This specification is adapted from the Ada Reference Manual for use with --
  12. -- GNAT.  In accordance with the copyright of that document, you can freely --
  13. -- copy and modify this specification,  provided that if you redistribute a --
  14. -- modified version,  any changes that you have made are clearly indicated. --
  15. --                                                                          --
  16. ------------------------------------------------------------------------------
  17.  
  18.  
  19. with Ada.IO_Exceptions;
  20.  
  21. generic
  22.    type Element_Type is private;
  23.  
  24. package Ada.Direct_IO is
  25.  
  26.    type File_Type is limited private;
  27.  
  28.    type File_Mode is (In_File, Inout_File, Out_File);
  29.    type Count     is range 0 .. Long_Long_Integer'Last;
  30.    subtype Positive_Count is Count range 1 .. Count'Last;
  31.  
  32.    ---------------------
  33.    -- File Management --
  34.    ---------------------
  35.  
  36.    procedure Create
  37.      (File : in out File_Type;
  38.       Mode : in File_Mode := Inout_File;
  39.       Name : in String := "";
  40.       Form : in String := "");
  41.  
  42.    procedure Open
  43.      (File : in out File_Type;
  44.       Mode : in File_Mode;
  45.       Name : in String;
  46.       Form : in String := "");
  47.  
  48.    procedure Close  (File : in out File_Type);
  49.    procedure Delete (File : in out File_Type);
  50.    procedure Reset  (File : in out File_Type; Mode : in File_Mode);
  51.    procedure Reset  (File : in out File_Type);
  52.  
  53.    function Mode (File : in File_Type) return File_Mode;
  54.    function Name (File : in File_Type) return String;
  55.    function Form (File : in File_Type) return String;
  56.  
  57.    function Is_Open (File : in File_Type) return Boolean;
  58.  
  59.    ---------------------------------
  60.    -- Input and Output Operations --
  61.    ---------------------------------
  62.  
  63.    procedure Read
  64.      (File : in File_Type;
  65.       Item : out Element_Type;
  66.       From : in Positive_Count);
  67.  
  68.    procedure Read
  69.      (File : in File_Type;
  70.       Item : out Element_Type);
  71.  
  72.    procedure Write
  73.      (File : in File_Type;
  74.       Item : in  Element_Type;
  75.       To   : in Positive_Count);
  76.  
  77.    procedure Write
  78.      (File : in File_Type;
  79.       Item : in Element_Type);
  80.  
  81.    procedure Set_Index (File : in File_Type; To : in Positive_Count);
  82.  
  83.    function Index (File : in File_Type) return Positive_Count;
  84.    function Size  (File : in File_Type) return Count;
  85.  
  86.    function End_Of_File (File : in File_Type) return Boolean;
  87.  
  88.    ----------------
  89.    -- Exceptions --
  90.    ----------------
  91.  
  92.    Status_Error : exception renames IO_Exceptions.Status_Error;
  93.    Mode_Error   : exception renames IO_Exceptions.Mode_Error;
  94.    Name_Error   : exception renames IO_Exceptions.Name_Error;
  95.    Use_Error    : exception renames IO_Exceptions.Use_Error;
  96.    Device_Error : exception renames IO_Exceptions.Device_Error;
  97.    End_Error    : exception renames IO_Exceptions.End_Error;
  98.    Data_Error   : exception renames IO_Exceptions.Data_Error;
  99.  
  100. private
  101.    type File_Control_Block;
  102.  
  103.    type File_Type is access File_Control_Block;
  104.  
  105. end Ada.Direct_IO;
  106.